@font-face {
	font-family: '';
	src: url('');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .16rem;
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	font-family: 'mr';
	font-weight: 400;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* For some Androids */
	/* 英文开启 */
	word-wrap: break-word !important;
	word-break: normal !important;
}

:root {
	--c: #3D60ED;
	--s_tran: 0.6s;
	--l_tran: 0.8s ease-in-out;
}

body{
    margin-top: .9rem;
}

.main {
	justify-content: space-between;
	max-width: 14.4rem;
	width: 95%;
	margin: 0 auto;
}

.page_wrap {
	width: 100%;
}

.lmx_h1 {
	width: 0px;
	height: 0px;
	margin: 0;
	text-indent: -9999em;
}

html {
	font-size: 100px;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	display: block;
	width: 100%;
	height: 100%;
}

ul {
	list-style: none;
}

input,
textarea {
	outline: 0;
	border: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	display: block;
	
}

hr {
	border: none;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
}


/* 左右flex布局 */
.header{
	width: 100%;
	background: #F8F8F8;
	height: 1rem;
	position: relative;
	z-index: 9;
	box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0,0,0,0.16);
	border-radius: 0rem 0rem 0rem 0rem
}
.flex_box {

	display: flex;
	align-items: center;
	flex-wrap: nowrap;
    justify-content: space-around;
}

.flex_start {
	align-items: flex-start;
}
.flex_box1{
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	flex: 0 0 3.06rem;
}
.flex_box2{
	margin: 0 auto;
	display: flex;
	align-items: center;
    justify-content: center;
	flex: 0 0 6.81rem;
}
.flex_box3{
	margin: 0 auto;
	display: flex;
	align-items: center;
    justify-content: center;
	flex: 0 0 6.81rem;
}
.flex_box3 .flex_box{
	margin: 0 auto;
	display: flex;
	width: 2.9rem;
	height: 0.9rem;
	background: #FF5905;

}
.flex_box [class*=flex_box] {
	flex: 1 1 auto;
	position: relative;
}

.header_logo{
	width: 2.43rem;
	height: 0.5rem;
}
.header .header_nav .level1_a {
	text-transform: uppercase;
	font-family: 'tm';
	transition: var(--s_tran);
	font-size: 0.2rem;
}

/* 列表flex布局 */
.list_flex {
	display: flex;
	flex-wrap: wrap;
}



/*多行溢出*/
.line1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
}

.line3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
}

.line4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 4;
}

.line5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
}




/* 水波纹效果 */
.btn-ripple {
	vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
	opacity: 1;
	position: relative;
	overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
	animation: ani_ripple 0.75s;
	z-index: 1;
	content: "";
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
	0% {
		background: rgba(0, 0, 0, 0.25);
		transform: translateX(-50%) translateY(-50%) scale(0);
	}

	to {
		background: transparent;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}




.more {
	height: 0.81rem;
	width: 1.85rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #504D4D;
	font-size: 0.18rem;
	border-right: 0.01rem solid #787676;
	transition: all .25s;
}

.pointer {
	cursor: pointer;
}



/* 公共面包屑 */
.bread .icon {
	width: 0.15rem;
	height: 0.15rem;
	margin-right: 0.08rem;
}

.bread .item span {
	display: flex;
	align-items: center;
	color: rgba(61, 96, 237, 1);
	font-size: 0.14rem;
}

.bread .item>a {
	display: flex;
	align-items: center;
}

.bread .list .item:not(:first-child)::before {
	content: '/';
	display: block;
	font-size: 0.14rem;
	color: rgba(61, 96, 237, 1);
	margin: 0 0.05rem;
	align-self: center;
}

.bread .list,
.bread .item {
	display: flex;
}

.bread .main {
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.bread .active span {
	color: rgba(233, 238, 255, 1);
}

.bread .list {
	justify-content: flex-end;
}



/* hover-图片放大1.1 */
.scale_box {
	display: block;
	width: auto;
	overflow: hidden;
}
.scale_box .scale_img {
	width: 100%;
	height: 100%;
	transition: var(--s_tran);
	cursor: pointer;
	object-fit: cover;
}
.hover_box:hover .scale_img {
	transform: scale(1.1);
}


/* hover-图片旋转向上位移 */
.rotate_box {
	display: block;
	width: auto;
}
.rotate_box .rotate_img {
	transition: var(--s_tran);
	object-fit: cover;
}
.hover_box:hover .rotate_img {
	transform: rotateY(180deg) translateY(-0.1rem);
}




/* 页码 */
.page {
	width: fit-content;
	margin: 0 auto;
	margin-top: 0.41rem;
	display: flex;
	align-items: center;
}

.page .list {
	display: flex;
	align-items: center;
	color: #FFFFFF;
}

.page .list .item {
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.03rem;
	margin-right: 0.03rem;
	border: 0.01rem solid rgba(56, 102, 240, 0);
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.14rem;
	color: #FFFFFF;
	cursor: pointer;
	overflow: hidden;
}

.page .list .item:hover {
	background: rgba(56, 102, 240, 1);
	color: white;
	border: 0.01rem solid rgba(56, 102, 240, 1);
}

.page .list .active {
	background: rgba(56, 102, 240, 1);
	color: white;
	border: 0.01rem solid rgba(56, 102, 240, 1);
}

.page .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.03rem;
	margin-right: 0.03rem;
	border: 0.01rem solid rgba(56, 102, 240, 1);
	cursor: pointer;
	overflow: hidden;
}

.page .btn img {
	height: 0.11rem;
	object-fit: contain;
}

.page .prev::after {
	content: '<';
}

.page .next::after {
	content: '>';
}

.page .prev::after,
.page .next::after {
	position: absolute;
	font-size: 0.16rem;
	font-family: '宋体';
	color: #fff;
	font-weight: bold;
}

.page .btn:hover {
	background: rgba(61, 96, 237, 1);
}

.page .disable {
	opacity: 0.5;
}

.page .btn:hover img {
	filter: brightness(0) invert(1);
}

.page .total {
	margin-right: 0.23rem;
	font-size: 0.14rem;
	color: #333333;
}

.page .to_page {
	font-size: 0.14rem;
	color: #FFFFFF;
	margin-left: 0.08rem;
}

.page .to_page input {
	width: 0.6rem;
	height: 0.31rem;
	margin: 0 0.05rem;
	padding: 0 0.1rem;
	border-radius: 0.01rem 0.01rem 0.01rem 0.01rem;
	border: 0.01rem solid rgba(61, 96, 237, 1);
	outline: none;
	font-size: 0.14rem;
	color: #FFFFFF;
	background: transparent;
}
.bg{
    width: 100%;
	margin-bottom: 1.38rem;
}
.banner {
    width: 100%;
    height: 4.5rem;
    /* background: url("/img/yewubankuai.png"); */
    position: relative;
    /* background-repeat: no-repeat;
    background-size: 100%; */
    /* display: flex; */
    /* align-items: center; */
    margin-bottom: 0.75rem;
}
.tw {
    width: 1.92rem;
    height: 0.64rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.48rem;
    color: #FFFFFF;
    line-height: 0rem;
    text-align: left;
    font-style: normal;
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 14.4rem;
}

.bg .main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10000;
    /* position: absolute;
    bottom: 0; */
    max-width: 100%;
    transform: translateY(-50%);
}

.banner .text {
    width: 75.26vw;
    flex: 0 0 75.26vw;
    height: 3.65vw;
    background: url("../img/about/hei.png");
    text-align: center;
    /* transform: translateY(70%); */
    background-size: 100%;
    background-repeat: no-repeat;
}

.banner .text3 {
    color: #333333;
    font-size: 0.28rem;
    margin: auto 0 0 auto;
    font-size: 0.18rem;
    letter-spacing: 0.02rem;
    margin-top: 0.03rem;
}

.banner .db {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 62.76vw;
    margin: 0 auto;
    height: 3.65vw;
    margin-right: 0;
}

.banner .db li {
    list-style: none;
    color: gray;
    font-size: 0.18rem;
    padding: 0 1.56vw;
    width: fit-content;
}

.banner .db li:first-child {
    padding-left: 0;
}

.banner .db li a {
    font-size: 0.9375vw;
}

.banner .db li + li {
    border-left: 0.01rem solid gray;
}

/* a:visited {
    color: gray;
} */

a:link {
    color: gray;
    text-decoration: none;
}

a:active {
    color: gray;
}

a:hover {
    color: #FF5905
}

.mainright {
    transform: translateY(-0.14rem);
}

.breadcrumb {
    background: url("../img/about/tiao.png");
    width: 4.68rem;
    height: 0.55rem;
    line-height: 0.55rem;
    background-size: 100%;
    background-repeat: no-repeat;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 auto 0 0.6rem;
    color: white;
    font-size: 0.16rem;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 .25rem;
    content: "-";
}

.breadcrumb ul li a {
    color: white;
    display: inline;
}
.foot {
    width: 14.4rem;
    height: 1.03rem;
    margin-top: 0.61rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    border-top: 0.01rem solid #DCDCDC;
    border-bottom: 0.01rem solid #DCDCDC;

}

/* .foot-left {
    width: 50%;
    height: 1.03rem;
    background: #FF5905;
    border-radius: 0rem 0rem 0rem 0rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.foot-left img {
    width: 0.1rem;
    height: 0.17rem;
    margin-left: 0.2rem;
    margin-right: 0.16rem;
} */

.heng {
    width: 0rem;
    height: 0.17rem;
    border: 0.01rem solid #949494;
    margin-right: 0.32rem;
    transition: var(--s_tran);
}

/* .text-1 {
    width: 1.12rem;
    height: 0.21rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.21rem;
} */

.foot-right,
.foot-left  {
    width: 50%;
    height: 1.03rem;
    border-radius: 0rem 0rem 0rem 0rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    transition: var(--s_tran);
}
.foot-left {
    
    justify-content: flex-start;
}
.foot-right:hover,
.foot-left:hover  {
    background-color: #FF5905;
}
.foot-right:hover .text-3,
.foot-left:hover .text-1  {
    color: #fff;
}

.foot-right:hover img,
.foot-left:hover img  {
    filter: brightness(0) invert(1);
}

.foot-right:hover .heng1,
.foot-left:hover .heng  {
    border: 0.01rem solid #fff;
}

.foot-right img,
.foot-left img  {
    width: 0.1rem;
    height: 0.17rem;
    margin-left: 0.2rem;
    margin-right: 0.16rem;
    transition: var(--s_tran);
}

.heng1{
    width: 0rem;
    height: 0.17rem;
    border: 0.01rem solid #949494;
    margin-left: 0.32rem;
    transition: var(--s_tran);
}


.text-3,
.text-1 {
    /* width: 1.12rem; */
    font-weight: 400;
    font-size: 0.16rem;
    color: #666666;
    text-align: right;
    transition: var(--s_tran);
}
.main1 img{
    width: revert-layer;
}
#map img{
    height: auto;
    width: auto;
}

@media screen and (max-width:1024px){
    .heng-1{
        display: none;
    }.banner .text3{
        /*display: none;*/
        position: absolute;
        right: 0%;
        font-size: 16px;
                top: 0%;
    }.banner .text{
        width: 100%;
        /*height: auto;*/
        flex: 0 0 auto;
        background: none;
    }.bg .main{
        width: 100%;
        flex-wrap: wrap;
        transform: translateY(0%);
    }.banner .db{
        width: 100%;
        height: auto;
        flex: 0 0 100%;
        overflow: auto;
        margin-top: 30px;
    }.banner .db li{
        width: 33%;
        margin-right: 2px;
    }.banner .db li a{
        font-size: 14px;
        color: #000;
        white-space: nowrap;
    }.banner .db li:nth-child(3n){
        margin-right: 0;
    }.banner .db li:first-child{
        padding-left: 10px;
    }.banner .db li + li{
        border: 0;
    }.breadcrumb ul li a{
        font-size: 14px;
    }.mainright{
        transform: none !important;
    }.breadcrumb{
        width: 300px;
        position: absolute;
        right: 0;
        top: -200%;
        display: none;
    }.breadcrumb ul{
        /*justify-content: center;*/
        /*display: block;*/
    }.tw{
        left: 53% !important;
    }.banner{
        margin-top: 50px;
        position: relative;
    }.breadcrumb li:not(:last-child)::after{
        margin: 0 .01rem;
    }
}